home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
setdraw.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
280b
|
18 lines
CLS
Color 168 ' Columbia Blue
FillRect 50,50 To 150,150
SetDrawLayer(TEXT)
oldx = 0
for x = -50 to 400
SuspendUpdate
Rem Erase old circle
Color -1 ' Erase Color
FillCircle oldx,100,50
Rem Draw new circle
Color 111 'Sports Car Red
FillCircle x,100,50
oldx = x
ResumeUpdate
Next x